home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / software / fredfish / 1092.lha / Programs / ErrorMsg / Install / InstallErrorMsg < prev    next >
Text File  |  1994-12-22  |  1KB  |  49 lines

  1. echo "Welcome to the ErrorMsg.library installation script.*N"
  2.  
  3. version >NIL: exec.library 37
  4. IF WARN
  5. echo "You need Kickstart 2.04 to use errormsg.library, sorry !"
  6. skip Exit
  7. ENDIF
  8.  
  9. echo "Currently installed version:"
  10. version errormsg.library FULL FILE
  11.  
  12. echo "*NDo you want to copy "
  13. echo "errormsg.library 4.01"
  14. ask "into your LIBS: directory ?"
  15.  
  16. IF NOT WARN
  17. echo "*NCopying..." NOLINE
  18. copy /Libs/errormsg.library to LIBS:
  19. echo "Done."
  20. ENDIF
  21.  
  22. echo "*NFor errormsg.library to operate in your language, I must copy"
  23. echo "a catalog file to your system disk for each language supported"
  24. echo "(except for english, which is the builtin language).*N"
  25.  
  26. ask "Copy the french (français) catalog file ?"
  27. IF WARN
  28. echo "*NCopying..." NOLINE
  29. copy /Catalogs/Français/errormsg.catalog to LOCALE:Catalogs/Français/errormsg.catalog
  30. echo "Done."
  31. ENDIF
  32.  
  33. echo "*NI advice you to copy the script file ERMID.rexx into your"
  34. echo "REXX: directory. This way, whenever you use errormsg's ARexx"
  35. echo "capacities, you can replace the strange numbers with meaningful"
  36. echo "symbols..."
  37.  
  38. ask "Copy the ERMID.rexx arexx script to REXX: ?"
  39. IF WARN
  40. echo "*NCopying..." NOLINE
  41. copy /Rexx/ERMID.rexx to REXX:ERMID.rexx
  42. echo "Done."
  43. ENDIF
  44.  
  45. echo "*NAll done."
  46.  
  47. Lab Exit
  48. Quit
  49.